

.burger {
	position: fixed;
	z-index: 999999;
	right: 1%;
	top: 15px;
	cursor: pointer;
	transform: rotateY(0);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	
	width: 50px;
	height: 50px;
	background-image: linear-gradient(to right, #8fc31f -10%, #8fc31f);
	box-shadow: 0px 0px 10px 0px rgba(2, 0, 0, 0.8);
	
	text-align: center;
	padding: 20px;
	line-height: 35px;
	/* background-image: linear-gradient(to right, #2ea7e0 -10%, #8fc31f); */
	border-radius: 50%;
	text-align: center;
}

.burger i{
	font-size: 24px;
	color: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}

.burger i.guanbi{
	display: none;
}

.burger-close i.guanbi{
	display: block;
}

.burger-close i.kai{
	display: none;
}


.burger-close {
	transform: rotate(360deg);
}


.menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 16%;
	visibility: hidden;
	z-index: 99999;
}

.menu-banner,
.menu-list {
	display: flex;
	flex-flow: column wrap;
	align-items: center;
	justify-self: center;
	float: left;
	width: 50%;
	height: 100vh;
	overflow: hidden;
}

.menu-banner {
	background: #fff;
	display: flex;
	justify-content: center;
	text-align: center;
	transform: translate3d(0, 100%, 0);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.23, 1);
}

.menu-list {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	
	background-image: -webkit-linear-gradient(to right, #2ea7e0 -30%, #8fc31f);
	background-image: linear-gradient(to right, #2ea7e0 -30%, #8fc31f);
	  
	transform: translate3d(0, -100%, 0);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.23, 1);
	
	
	
	width: 100%;
	float: right;
	
}

.menu-list .menu-item {
	position: relative;
	transform: translateX(50vw);
}

.menu-list .menu-item a {
	display: block;
	color: #111;
	font-size: 1.5em;
	line-height: 3.6em;
	font-weight: 500;
}

.menu-list .menu-item:before {
	position: absolute;
	bottom: 0;
	left: calc(50% - 12px);
	content: "";
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	transition: all 0.2s cubic-bezier(0.23, 1, 0.23, 1);
}

.menu-list .menu-item:hover:before {
	width: 100%;
	left: 0;
}


.menu-action {
	visibility: visible;
}

.menu-action .menu-banner {
	transform: translate3d(0, 0, 0);
}

.menu-banner img{
	max-width: 100%;
	display: block;
	margin: 0px auto;
}

.menu-action .menu-list {
	transform: translate3d(0, 0, 0);
}

.menu-action .menu-list .menu-item {
	transform: translateX(0);
}

